home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / usr / lib / ruby / 1.8 / uri.rb < prev    next >
Text File  |  2008-04-15  |  710b  |  30 lines

  1. #
  2. # URI support for Ruby
  3. #
  4. # Author:: Akira Yamada <akira@ruby-lang.org>
  5. # Documentation:: Akira Yamada <akira@ruby-lang.org>, Dmitry V. Sabanin <sdmitry@lrn.ru>
  6. # License:: 
  7. #  Copyright (c) 2001 akira yamada <akira@ruby-lang.org>
  8. #  You can redistribute it and/or modify it under the same term as Ruby.
  9. # Revision:: $Id: uri.rb 16038 2008-04-15 09:41:47Z kazu $
  10. # See URI for documentation
  11. #
  12.  
  13. module URI
  14.   # :stopdoc:
  15.   VERSION_CODE = '000911'.freeze
  16.   VERSION = VERSION_CODE.scan(/../).collect{|n| n.to_i}.join('.').freeze
  17.   # :startdoc:
  18.  
  19. end
  20.  
  21. require 'uri/common'
  22. require 'uri/generic'
  23. require 'uri/ftp'
  24. require 'uri/http'
  25. require 'uri/https'
  26. require 'uri/ldap'
  27. require 'uri/ldaps'
  28. require 'uri/mailto'
  29.